Remove superfluous newline
authorSamuel Chase <samebchase@gmail.com>
Fri, 27 Jun 2014 10:47:34 +0000 (16:17 +0530)
committerSamuel Chase <samebchase@gmail.com>
Fri, 27 Jun 2014 10:47:34 +0000 (16:17 +0530)
src/bin/cargo.rs

index 6bafc01fa7bb75b8aa2890f9dd8f68f234f961e3..454e84e6b21e4877b14f31f1c605aaf20715e722 100644 (file)
@@ -49,7 +49,7 @@ fn execute() {
         },
         "--help" | "-h" | "help" | "-?" => {
             println!("Commands:");
-            println!("  build          # compile the current project\n");
+            println!("  build          # compile the current project");
             println!("  test           # run the tests\n");
 
             let (_, options) = hammer::usage::<GlobalFlags>(false);